.net loop through dictionary

40

.net loop through dictionary -

foreach (KeyValuePair item in myDictionary)
{
    MessageBox.Show(item.Key + "   " + item.Value);
}

Comments

Submit
0 Comments